home *** CD-ROM | disk | FTP | other *** search
/ Hot Super Models / Hot Super Models.iso / unix / x11 / xv2r1.tar / xv2r1 / server / ddx / cfb32 / cfbgetsp.c < prev    next >
C/C++ Source or Header  |  1991-09-25  |  5KB  |  157 lines

  1. /***********************************************************
  2. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  3. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its 
  8. documentation for any purpose and without fee is hereby granted, 
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in 
  11. supporting documentation, and that the names of Digital or MIT not be
  12. used in advertising or publicity pertaining to distribution of the
  13. software without specific, written prior permission.  
  14.  
  15. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  16. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  17. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  18. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  19. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  20. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  21. SOFTWARE.
  22.  
  23. ******************************************************************/
  24.  
  25. #include "X.h"
  26. #include "Xmd.h"
  27. #include "servermd.h"
  28.  
  29. #include "misc.h"
  30. #include "region.h"
  31. #include "gc.h"
  32. #include "windowstr.h"
  33. #include "pixmapstr.h"
  34. #include "scrnintstr.h"
  35.  
  36. #include "cfb.h"
  37. #include "cfbmskbits.h"
  38.  
  39. /* GetSpans -- for each span, gets bits from drawable starting at ppt[i]
  40.  * and continuing for pwidth[i] bits
  41.  * Each scanline returned will be server scanline padded, i.e., it will come
  42.  * out to an integral number of words.
  43.  */
  44. void
  45. cfbGetSpans(pDrawable, wMax, ppt, pwidth, nspans, pdstStart)
  46.     DrawablePtr        pDrawable;    /* drawable from which to get bits */
  47.     int            wMax;        /* largest value of all *pwidths */
  48.     register DDXPointPtr ppt;        /* points to start copying from */
  49.     int            *pwidth;    /* list of number of bits to copy */
  50.     int            nspans;        /* number of scanlines to copy */
  51.     unsigned long    *pdstStart;    /* where to put the bits */
  52. {
  53.     register unsigned long    *pdst;        /* where to put the bits */
  54.     register unsigned long    *psrc;        /* where to get the bits */
  55.     register unsigned long    tmpSrc;        /* scratch buffer for bits */
  56.     unsigned long        *psrcBase;    /* start of src bitmap */
  57.     int            widthSrc;    /* width of pixmap in bytes */
  58.     register DDXPointPtr pptLast;    /* one past last point to get */
  59.     int             xEnd;        /* last pixel to copy from */
  60.     register int    nstart; 
  61.     int             nend; 
  62.     int             srcStartOver; 
  63.     unsigned long    startmask, endmask;
  64.     int            nlMiddle, nl, srcBit;
  65.     int            w;
  66.     unsigned long    *pdstNext;
  67.  
  68.     switch (pDrawable->bitsPerPixel) {
  69.     case 1:
  70.         mfbGetSpans(pDrawable, wMax, ppt, pwidth, nspans, pdstStart);
  71.         return;
  72.     case PSZ:
  73.         break;
  74.     default:
  75.         FatalError("cfbGetSpans: invalid depth\n");
  76.     }
  77.  
  78.     
  79.     cfbGetLongWidthAndPointer (pDrawable, widthSrc, psrcBase)
  80.  
  81. #if PPW == 4
  82.     if ((nspans == 1) && (*pwidth == 1))
  83.     {
  84.     tmpSrc = *((unsigned char *)(psrcBase + (ppt->y * (widthSrc >> 2)))
  85.            + ppt->x);
  86. #if BITMAP_BIT_ORDER == MSBFirst
  87.     tmpSrc <<= 24;
  88. #endif
  89.     *pdstStart = tmpSrc;
  90.     return;
  91.     }
  92. #endif
  93.     pdst = pdstStart;
  94.     pptLast = ppt + nspans;
  95.     while(ppt < pptLast)
  96.     {
  97.     xEnd = min(ppt->x + *pwidth, widthSrc << (PWSH-2) );
  98.     psrc = psrcBase + (ppt->y * (widthSrc >> 2)) + (ppt->x >> PWSH); 
  99.     w = xEnd - ppt->x;
  100.     srcBit = ppt->x & PIM;
  101.     /* This shouldn't be needed */
  102.     pdstNext = pdst + PixmapWidthInPadUnits(w, PSZ);
  103.  
  104.     if (srcBit + w <= PPW) 
  105.     { 
  106.         getbits(psrc, srcBit, w, tmpSrc);
  107. /*XXX*/        putbits(tmpSrc, 0, w, pdst, ~((unsigned long)0)); 
  108.         pdst++;
  109.     } 
  110.     else 
  111.     { 
  112.  
  113.         maskbits(ppt->x, w, startmask, endmask, nlMiddle);
  114.         if (startmask) 
  115.         nstart = PPW - srcBit; 
  116.         else 
  117.         nstart = 0; 
  118.         if (endmask) 
  119.         nend = xEnd & PIM; 
  120.         srcStartOver = srcBit + nstart > PLST;
  121.         if (startmask) 
  122.         { 
  123.         getbits(psrc, srcBit, nstart, tmpSrc);
  124. /*XXX*/        putbits(tmpSrc, 0, nstart, pdst, ~((unsigned long)0));
  125.         if(srcStartOver)
  126.             psrc++;
  127.         } 
  128.         nl = nlMiddle; 
  129.         while (nl--) 
  130.         { 
  131.         tmpSrc = *psrc;
  132. /*XXX*/        putbits(tmpSrc, nstart, PPW, pdst, ~((unsigned long)0));
  133.         psrc++;
  134.         pdst++;
  135.         } 
  136.         if (endmask) 
  137.         { 
  138.         getbits(psrc, 0, nend, tmpSrc);
  139. /*XXX*/        putbits(tmpSrc, nstart, nend, pdst, ~((unsigned long)0));
  140.         if(nstart + nend >= PPW)
  141.             pdst++;
  142.         } 
  143. #ifdef    notdef
  144.         pdst++; 
  145.         while(pdst < pdstNext)
  146.         {
  147.         *pdst++ = 0;
  148.         }
  149. #else
  150.         pdst = pdstNext;
  151. #endif
  152.     } 
  153.         ppt++;
  154.     pwidth++;
  155.     }
  156. }
  157.